home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
STraTOS 1997 April & May
/
STraTOS 1 - 1997 April & May.iso
/
CD01
/
GNU_KIT
/
DISK9.ZIP
/
include
/
utime.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-07-10
|
273 b
|
16 lines
#ifndef _U_TIME_H
#define _U_TIME_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
struct utimbuf { /* type for times() call */
time_t actime;
time_t modtime;
};
__EXTERN int utime __PROTO((const char *path, const struct utimbuf *times));
#endif /* _U_TIME_H */